home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 May / may_2001.iso / intercd / root / Multimedia / ^DivX_Article / DivX / VFW4048src / src / config_dialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-02-10  |  1.4 KB  |  54 lines

  1. #if !defined(AFX_CONFIG_DIALOG_H__BD8973BC_911C_4004_8026_625C9385C8DC__INCLUDED_)
  2. #define AFX_CONFIG_DIALOG_H__BD8973BC_911C_4004_8026_625C9385C8DC__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // config_dialog.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // ConfigDialog dialog
  12.  
  13. class ConfigDialog : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     ConfigDialog(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(ConfigDialog)
  21.     enum { IDD = IDD_DIALOG_CONFIG };
  22.     CSliderCtrl    m_slider_bitrate;
  23.     long    m_bitrate;
  24.     long    m_rc_period;
  25.     int        m_max_quant;
  26.     int        m_min_quant;
  27.     CString    m_search_range;
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(ConfigDialog)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(ConfigDialog)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg void OnChangeBitrate();
  45.     afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_CONFIG_DIALOG_H__BD8973BC_911C_4004_8026_625C9385C8DC__INCLUDED_)
  54.